quic: add support for TLS certificate compression#64434
Open
bjohansebas wants to merge 1 commit into
Open
Conversation
Collaborator
|
Review requested:
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #64434 +/- ##
==========================================
- Coverage 90.24% 90.23% -0.02%
==========================================
Files 741 741
Lines 241384 241646 +262
Branches 45480 45528 +48
==========================================
+ Hits 217844 218038 +194
- Misses 15097 15155 +58
- Partials 8443 8453 +10
🚀 New features to boost your workflow:
|
jasnell
approved these changes
Jul 12, 2026
jasnell
left a comment
Member
There was a problem hiding this comment.
Appears to be some linting issues but otherwise LGTM
16493b9 to
4d98228
Compare
Signed-off-by: Sebastian Beltran <bjohansebas@gmail.com>
4d98228 to
51cd687
Compare
pimterry
approved these changes
Jul 13, 2026
Collaborator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add an opt-in
certificateCompressionTLS option for QUIC sessions,mirroring the existing
node:tlssupport. When set to a list of'zlib', 'brotli', and/or 'zstd', the server compresses its certificate
chain and the client advertises the algorithms it accepts, reducing the
size of the server's first flight and helping it stay within QUIC's
anti-amplification limit.
Certificate compression is disabled by default: the OpenSSL default
preferences are cleared unless the option is provided, keeping QUIC
consistent with
node:tlsI've been using AI for the investigation and to better understand the context